home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / C Internet Config / IC Application Source ƒ / Headers ƒ / IC W Personal.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-19  |  610 b   |  28 lines  |  [TEXT/SPM ]

  1. /*
  2.     ICWPersonal.h
  3.     
  4. */
  5.  
  6. #pragma once
  7.  
  8. #ifndef __H_ICWPersonal__
  9. #define __H_ICWPersonal__
  10.  
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14.  
  15. void DoWindoIdle(WindowPtr window);
  16. void WindowDoKey(WindowPtr window,short modifiers,char ch,short code);
  17. void WindowActivateDeactivate(WindowPtr window,Boolean activate);
  18. void WindowItemWhere(WindowPtr window,EventRecord* er,short item);
  19. Boolean WindowEarlyHandleEvent(WindowPtr window,EventRecord* er);
  20. void WindowTab(WindowPtr window,Boolean shift);
  21. Boolean WindowEarlyHandleKey(WindowPtr window,EventRecord* er);
  22.  
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26.  
  27. #endif /* __H_ICWPersonal__ */
  28.